Access Elements of an Array Using Pointer with C++

04-11-17 Course- CPP

In this program declares the array of five element and the elements of that array are accessed using pointer.

Source Code to Access Array Elements Using Pointer


#include <iostream>
using namespace std;
int main(){
   int data[5], i;
   cout << "Enter elements: ";
   for(i=0;i<5;++i)
      cin >> data[i];
   cout << "You entered: ";
   for(i=0;i<5;++i)
      cout << endl << *(data+i);
   return 0;
}

Output


Enter elements: 1
2
3
5
4
You entered: 1
2
3
5
4